home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 3: CDPD 3
/
Almathera Ten on Ten - Disc 3: CDPD3.iso
/
fish
/
726-750
/
727
/
2view
/
getinfo.rx
< prev
next >
Wrap
Text File
|
1995-03-18
|
927b
|
64 lines
/* 2View sample ARexx script*/
/* This gets information about the currently displayed picture, then */
/* advances to the next picture */
address "2View.1"
options results
pictoback
'get name'
say 'Name:' result
'get width'
say 'Width: ' result
'get height'
say 'Height: ' result
'get depth'
say 'Depth:' result
'get viewmodes'
say 'Viewmodes:' result
'get specialmodes'
say 'Special modes: ' result
time=4;
'get timeperpicture'
time=result
if time==0 then say 'Not timed'
else say 'Timed: 'time' jiffies per picture'
if time~==0 then do
'get timeleft'
say 'Timeleft: ' result
time=result
say 'Which equals ' time/50 ' seconds'
end
'get playlistname'
say 'Playlist filename: 'result
'get looping'
say 'Looping?' result
'get printpictures'
say 'Print pictures? 'result
'get cyclestatus'
say 'cycle status: ' result
'get cyclerate'
say 'cycle rate: ' result
'get version'
say 'This is 2View 'result
advance